home *** CD-ROM | disk | FTP | other *** search
/ Ultra Mac Games 1 & 2 / UltraMacGames1.iso / Educational / Group 1 Analysis / card_14034.txt < prev    next >
Text File  |  1991-08-08  |  8KB  |  396 lines

  1. -- card: 14034 from stack: in
  2. -- bmap block id: 14950
  3. -- flags: 0000
  4. -- background id: 5931
  5. -- name: Begin Random
  6. ----- HyperTalk script -----
  7. on opencard
  8.   global time1
  9.   global Silver
  10.   global Mercury
  11.   global Lead
  12.   global key
  13.  
  14.  
  15. end opencard
  16.  
  17.  
  18.  
  19.  
  20. on check
  21.   global Silver
  22.   global Mercury
  23.   global Lead
  24.   global reagent
  25.   global route
  26.   global score
  27.   put "Reagents not Needed yet" into line 1 of bkgnd field "info"
  28.  
  29.   put "Examine Flow Chart" into line 2 of bkgnd field "info"
  30.   repeat 2
  31.     set the highlight of card button "flow Chart" to true
  32.     wait 1 second
  33.     set the highlight of card button "flow Chart" to false
  34.     wait 1 second
  35.   end repeat
  36. end check
  37.  
  38.  
  39.  
  40. -- part 4 (field)
  41. -- low flags: 81
  42. -- high flags: 0004
  43. -- rect: left=0 top=20 right=178 bottom=387
  44. -- title width / last selected line: 0
  45. -- icon id / first selected line: 0 / 0
  46. -- text alignment: 1
  47. -- font id: 21
  48. -- text size: 24
  49. -- style flags: 0
  50. -- line height: 32
  51. -- part name: note
  52.  
  53.  
  54. -- part 11 (button)
  55. -- low flags: 00
  56. -- high flags: 2000
  57. -- rect: left=3 top=44 right=106 bottom=54
  58. -- title width / last selected line: 0
  59. -- icon id / first selected line: 0 / 0
  60. -- text alignment: 1
  61. -- font id: 0
  62. -- text size: 12
  63. -- style flags: 0
  64. -- line height: 16
  65. -- part name: Hydrochloric Acid
  66. ----- HyperTalk script -----
  67. on mouseUp
  68.   global route
  69.   global reagent
  70.   global lastClick
  71.  
  72.   if the seconds - lastClick < 4 then exit mouseup
  73.   else put the seconds into lastClick
  74.   get the short name of me
  75.   put it into reagent
  76.   check
  77.  
  78.  
  79. end mouseUp
  80.  
  81.  
  82.  
  83. -- part 12 (button)
  84. -- low flags: 00
  85. -- high flags: 2000
  86. -- rect: left=64 top=44 right=106 bottom=115
  87. -- title width / last selected line: 0
  88. -- icon id / first selected line: 0 / 0
  89. -- text alignment: 1
  90. -- font id: 0
  91. -- text size: 12
  92. -- style flags: 0
  93. -- line height: 16
  94. -- part name: Nitric Acid
  95. ----- HyperTalk script -----
  96. on mouseUp
  97.  
  98.   global reagent
  99.  
  100.   global lastClick
  101.  
  102.   if the seconds - lastClick < 4 then exit mouseup
  103.   else put the seconds into lastClickget the short name of me
  104.   put it into reagent
  105.   check
  106.  
  107.  
  108. end mouseUp
  109.  
  110.  
  111.  
  112. -- part 13 (button)
  113. -- low flags: 00
  114. -- high flags: 2000
  115. -- rect: left=125 top=44 right=106 bottom=176
  116. -- title width / last selected line: 0
  117. -- icon id / first selected line: 0 / 0
  118. -- text alignment: 1
  119. -- font id: 0
  120. -- text size: 12
  121. -- style flags: 0
  122. -- line height: 16
  123. -- part name: Distilled Water
  124. ----- HyperTalk script -----
  125. on mouseUp
  126.  
  127.   global reagent
  128.   global lastClick
  129.  
  130.   if the seconds - lastClick < 4 then exit mouseup
  131.   else put the seconds into lastClick
  132.   get the short name of me
  133.   put it into reagent
  134.   check
  135.  
  136.  
  137. end mouseUp
  138.  
  139.  
  140.  
  141. -- part 14 (button)
  142. -- low flags: 00
  143. -- high flags: 2000
  144. -- rect: left=184 top=44 right=106 bottom=235
  145. -- title width / last selected line: 0
  146. -- icon id / first selected line: 0 / 0
  147. -- text alignment: 1
  148. -- font id: 0
  149. -- text size: 12
  150. -- style flags: 0
  151. -- line height: 16
  152. -- part name: Potassium Dichromate
  153. ----- HyperTalk script -----
  154. on mouseUp
  155.   global route
  156.   global reagent
  157.   global lastClick
  158.  
  159.   if the seconds - lastClick < 4 then exit mouseup
  160.   else put the seconds into lastClick
  161.   get the short name of me
  162.   put it into reagent
  163.   check
  164.  
  165.  
  166. end mouseUp
  167.  
  168.  
  169.  
  170. -- part 15 (button)
  171. -- low flags: 00
  172. -- high flags: 2000
  173. -- rect: left=246 top=44 right=106 bottom=297
  174. -- title width / last selected line: 0
  175. -- icon id / first selected line: 0 / 0
  176. -- text alignment: 1
  177. -- font id: 0
  178. -- text size: 12
  179. -- style flags: 0
  180. -- line height: 16
  181. -- part name: Ammonia
  182. ----- HyperTalk script -----
  183. on mouseUp
  184.   global route
  185.   global reagent
  186.   global lastClick
  187.  
  188.   if the seconds - lastClick < 4 then exit mouseup
  189.   else put the seconds into lastClick
  190.   get the short name of me
  191.   put it into reagent
  192.   check
  193.  
  194.  
  195. end mouseUp
  196.  
  197.  
  198.  
  199. -- part 22 (field)
  200. -- low flags: 81
  201. -- high flags: 0000
  202. -- rect: left=389 top=212 right=283 bottom=507
  203. -- title width / last selected line: 0
  204. -- icon id / first selected line: 0 / 0
  205. -- text alignment: 0
  206. -- font id: 3
  207. -- text size: 12
  208. -- style flags: 0
  209. -- line height: 16
  210. -- part name: hold
  211.  
  212.  
  213. -- part 29 (field)
  214. -- low flags: 81
  215. -- high flags: 0001
  216. -- rect: left=161 top=212 right=319 bottom=195
  217. -- title width / last selected line: 0
  218. -- icon id / first selected line: 0 / 0
  219. -- text alignment: 0
  220. -- font id: 3
  221. -- text size: 12
  222. -- style flags: 0
  223. -- line height: 16
  224. -- part name: f
  225.  
  226.  
  227. -- part 36 (button)
  228. -- low flags: 00
  229. -- high flags: 8002
  230. -- rect: left=434 top=205 right=254 bottom=509
  231. -- title width / last selected line: 0
  232. -- icon id / first selected line: 0 / 0
  233. -- text alignment: 1
  234. -- font id: 0
  235. -- text size: 12
  236. -- style flags: 0
  237. -- line height: 16
  238. -- part name: Flow Chart
  239. ----- HyperTalk script -----
  240. on mouseUp
  241.   push card
  242.   go to card id 7591
  243.   put 1 into zz
  244.   repeat until zz = 4
  245.     set the highlight of card button step1a to true
  246.     wait 30
  247.     set the highlight of card button step1a to false
  248.     wait 30
  249.     put zz+1 into zz
  250.   end repeat
  251.  
  252. end mouseUp
  253.  
  254.  
  255.  
  256. -- part 37 (button)
  257. -- low flags: 00
  258. -- high flags: 2000
  259. -- rect: left=433 top=5 right=95 bottom=511
  260. -- title width / last selected line: 0
  261. -- icon id / first selected line: 0 / 0
  262. -- text alignment: 1
  263. -- font id: 0
  264. -- text size: 12
  265. -- style flags: 0
  266. -- line height: 16
  267. -- part name: cv
  268. ----- HyperTalk script -----
  269.  
  270.  
  271. on mouseUp
  272.  
  273.  
  274.  
  275.  
  276.   show card field "info"
  277.   Put "Please Wait" into line 2 of card field info
  278.   Put "While Centrifuging" into line 4 of card field "info"
  279.   wait 1 second
  280.   visual dissolve slow
  281.   go to next card
  282.   set the lockscreen to true
  283.   go back
  284.   hide card field "info"
  285.   put empty into card field  "info"
  286.   go to next card
  287.  
  288.   set the lockscreen to false
  289.  
  290.  
  291.  
  292. end mouseUp
  293.  
  294.  
  295.  
  296.  
  297. -- part 38 (field)
  298. -- low flags: 81
  299. -- high flags: 0004
  300. -- rect: left=1 top=112 right=205 bottom=390
  301. -- title width / last selected line: 0
  302. -- icon id / first selected line: 0 / 0
  303. -- text alignment: 1
  304. -- font id: 3
  305. -- text size: 14
  306. -- style flags: 256
  307. -- line height: 18
  308. -- part name: Message
  309. ----- HyperTalk script -----
  310. on mouseup
  311.   hide card field "message"
  312. end mouseup
  313.  
  314.  
  315.  
  316. -- part 39 (button)
  317. -- low flags: 00
  318. -- high flags: 2000
  319. -- rect: left=434 top=112 right=198 bottom=504
  320. -- title width / last selected line: 0
  321. -- icon id / first selected line: 0 / 0
  322. -- text alignment: 1
  323. -- font id: 0
  324. -- text size: 12
  325. -- style flags: 0
  326. -- line height: 16
  327. -- part name: Hot Water Bath
  328. ----- HyperTalk script -----
  329. on mouseUp
  330.  
  331.  
  332.   Put empty into card field "message"
  333.   show card field "message"
  334.   put "Check Flow Chart" into line 1 of card field "message"
  335.   Put "Hot Water Bath not used " into line 3 of card field "message"
  336.   put "at this time" into line 5 of card field "message"
  337.   wait 2 seconds
  338.   hide card field "message"
  339.  
  340.  
  341.  
  342. end mouseUp
  343.  
  344.  
  345.  
  346. -- part 40 (field)
  347. -- low flags: 81
  348. -- high flags: 0004
  349. -- rect: left=0 top=7 right=206 bottom=416
  350. -- title width / last selected line: 0
  351. -- icon id / first selected line: 0 / 0
  352. -- text alignment: 1
  353. -- font id: 21
  354. -- text size: 18
  355. -- style flags: 0
  356. -- line height: 24
  357. -- part name: info
  358.  
  359.  
  360. -- part 41 (button)
  361. -- low flags: 00
  362. -- high flags: 4000
  363. -- rect: left=13 top=219 right=328 bottom=179
  364. -- title width / last selected line: 0
  365. -- icon id / first selected line: 0 / 0
  366. -- text alignment: 1
  367. -- font id: 0
  368. -- text size: 12
  369. -- style flags: 0
  370. -- line height: 16
  371. -- part name: invert
  372. ----- HyperTalk script -----
  373. on mouseUp
  374.  
  375. end mouseUp
  376.  
  377.  
  378.  
  379. -- part contents for card part 4
  380. ----- text -----
  381. Please Wait While
  382. Computer Selects
  383. an Unknown for You
  384. to Analyze
  385.  
  386. -- part contents for card part 38
  387. ----- text -----
  388. Check Flow Chart
  389.  
  390. Hot Water Bath not used 
  391.  
  392. at this time
  393.  
  394. -- part contents for background part 8
  395. ----- text -----
  396. Ready for Next Step